home *** CD-ROM | disk | FTP | other *** search
/ QRZ! Ham Radio 4 / QRZ Ham Radio Callsign Database - Volume 4.iso / files / dsp / 56ktools / dspkgctr.z / dspkgctr / gcc / local-alloc.c < prev    next >
C/C++ Source or Header  |  1992-06-08  |  38KB  |  1,178 lines

  1. /* Allocate registers within a basic block, for GNU compiler.
  2.    Copyright (C) 1987, 1988 Free Software Foundation, Inc.
  3.  
  4. This file is part of GNU CC.
  5.  
  6. GNU CC is free software; you can redistribute it and/or modify
  7. it under the terms of the GNU General Public License as published by
  8. the Free Software Foundation; either version 1, or (at your option)
  9. any later version.
  10.  
  11. GNU CC is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. GNU General Public License for more details.
  15.  
  16. You should have received a copy of the GNU General Public License
  17. along with GNU CC; see the file COPYING.  If not, write to
  18. the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
  19.  
  20.  
  21. /* Allocation of hard register numbers to pseudo registers is done in
  22.    two passes.  In this pass we consider only regs that are born and
  23.    die once within one basic block.  We do this one basic block at a
  24.    time.  Then the next pass allocates the registers that remain.
  25.    Two passes are used because this pass uses methods that work only
  26.    on linear code, but that do a better job than the general methods
  27.    used in global_alloc, and more quickly too.
  28.  
  29.    The assignments made are recorded in the vector reg_renumber
  30.    whose space is allocated here.  The rtl code itself is not altered.
  31.  
  32.    We assign each instruction in the basic block a number
  33.    which is its order from the beginning of the block.
  34.    Then we can represent the lifetime of a pseudo register with
  35.    a pair of numbers, and check for conflicts easily.
  36.    We can record the availability of hard registers with a
  37.    HARD_REG_SET for each instruction.  The HARD_REG_SET
  38.    contains 0 or 1 for each hard reg.
  39.  
  40.    To avoid register shuffling, we tie registers together when one
  41.    dies by being copied into another, or dies in an instruction that
  42.    does arithmetic to produce another.  The tied registers are
  43.    allocated as one.  Registers with different reg class preferences
  44.    can never be tied unless the class preferred by one is a subclass
  45.    of the one preferred by the other.
  46.  
  47.    Tying is represented with "quantity numbers".
  48.    A non-tied register is given a new quantity number.
  49.    Tied registers have the same quantity number.
  50.    
  51.    We have provision to exempt registers, even when they are contained
  52.    within the block, that can be tied to others that are not contained in it.
  53.    This is so that global_alloc could process them both and tie them then.
  54.    But this is currently disabled since tying in global_alloc is not
  55.    yet implemented.  */
  56.  
  57. #include <stdio.h>
  58. #include "config.h"
  59. #include "rtl.h"
  60. #include "flags.h"
  61. #include "basic-block.h"
  62. #include "regs.h"
  63. #include "hard-reg-set.h"
  64. #include "insn-config.h"
  65. #include "recog.h"
  66.  
  67. /* What about hardware registers used and set within same insn?
  68.    Will that ever happen for a non-fixed register?
  69.    Our lifetime-tracking for hardware registers would lose.
  70.    [This caution is an old comment that may be obsolete;
  71.     I think there is no longer a problem, but I'm not sure.]  */
  72.  
  73. /* Next quantity number available for allocation.  */
  74.  
  75. static int next_qty;
  76.  
  77. /* In all the following vectors indexed by quantity number,
  78.    only elements at indices >= FIRST_PSEUDO_REGISTER are actually used.  */
  79.  
  80. /* Element Q is the hard reg number chosen for quantity Q,
  81.    or -1 if none was found.  */
  82.  
  83. static short *qty_phys_reg;
  84.  
  85. /* Element Q is the hard reg number suggested for quantity Q,
  86.    or -1 if no specific suggestion.  */
  87.  
  88. static short *qty_phys_sugg;
  89.  
  90. /* Element Q is the number of refs to quantity Q.  */
  91.  
  92. static short *qty_n_refs;
  93.  
  94. /* Element Q is a reg class contained in (smaller than) the
  95.    preferred classes of all the pseudo regs that are tied in quantity Q.
  96.    This is the preferred class for allocating that quantity.  */
  97.  
  98. static enum reg_class *qty_min_class;
  99.  
  100. /* Insn number (counting from head of basic block)
  101.    where quantity Q was born.  -1 if birth has not been recorded.  */
  102.  
  103. static int *qty_birth;
  104.  
  105. /* Insn number (counting from head of basic block)
  106.    where quantity Q died.  Due to the way tying is done,
  107.    and the fact that we consider in this pass only regs that die but once,
  108.    a quantity can die only once.  Each quantity's life span
  109.    is a set of consecutive insns.  -1 if death has not been recorded.  */
  110.  
  111. static int *qty_death;
  112.  
  113. /* Number of words needed to hold the data in quantity Q.
  114.    This depends on its machine mode.  It is used for these purposes:
  115.    1. If it is 0, the qty is not really in use and is not allocated.
  116.    2. It is used in computing the relative importances of qtys,
  117.       which determines the order in which we look for regs for them.
  118.    3. It is used in rules that prevent tying several registers of
  119.       different sizes in a way that is geometrically impossible
  120.       (see combine_regs).  */
  121.  
  122. static int *qty_size;
  123.  
  124. /* This holds the mode of the registers that are tied to qty Q,
  125.    or VOIDmode if registers with differing modes are tied together.  */
  126.  
  127. static enum machine_mode *qty_mode;
  128.  
  129. /* Number of times a reg tied to qty Q lives across a CALL_INSN.  */
  130.  
  131. static int *qty_n_calls_crossed;
  132.  
  133. /* Nonzero means don't allocate qty Q if we can't get its preferred class.  */
  134.  
  135. static char *qty_preferred_or_nothing;
  136.  
  137. /* reg_qty[N] (where N is a pseudo reg number)
  138.    is the qty number of that reg (which is >= FIRST_PSEUDO_REGISTER),
  139.    or -1 if (REG N) is not local to the current basic block,
  140.    or -2 if not known yet.
  141.  
  142.    If N is < FIRST_PSEUDO_REGISTER, reg_qty[N] is -1.  */
  143.  
  144. static int *reg_qty;
  145.  
  146. /* The offset (in words) of register N within its quantity.
  147.    This can be nonzero if register N is SImode, and has been tied
  148.    to a subreg of a DImode register.  */
  149.  
  150. static int *reg_offset;
  151.  
  152. /* Vector of substitutions of register numbers,
  153.    used to map pseudo regs into hardware regs.
  154.    This is set up as a result of register allocation.
  155.    Element N is the hard reg assigned to pseudo reg N,
  156.    or is -1 if no hard reg was assigned.
  157.    If N is a hard reg number, element N is N.  */
  158.  
  159. short *reg_renumber;
  160.  
  161. /* Set of hard registers live at the current point in the scan
  162.    of the instructions in a basic block.  */
  163.  
  164. static HARD_REG_SET regs_live;
  165.  
  166. /* Indexed by insn-number-within-basic-block,
  167.    a set or hard registers live *after* that insn.  */
  168.  
  169. static HARD_REG_SET *regs_live_at;
  170.  
  171. /* Nonzero if a CALL_INSN has been scanned
  172.    but we have not yet seen a reference to the value returned.  */
  173.  
  174. static int call_seen;
  175.  
  176. /* Communicate local vars `insn_number' and `insn'
  177.    from `block_alloc' to `reg_is_set' and `wipe_dead_reg'.  */
  178. static int this_insn_number;
  179. static rtx this_insn;
  180.  
  181. static void block_alloc ();
  182. static int combine_regs ();
  183. static void wipe_dead_reg ();
  184. static int find_free_reg ();
  185. static void reg_is_born ();
  186. static void reg_is_set ();
  187. static void mark_life ();
  188. static void post_mark_life ();
  189. static int qty_compare ();
  190. static int qty_compare_1 ();
  191. static int reg_meets_class_p ();
  192. static int reg_class_subset_p ();
  193. static void update_qty_class ();
  194.  
  195. /* Allocate a new quantity (new within current basic block)
  196.    for register number REGNO which is born in insn number INSN_NUMBER
  197.    within the block.  MODE and SIZE are info on reg REGNO.  */
  198.  
  199. static void
  200. alloc_qty (regno, mode, size, insn_number)
  201.      int regno;
  202.      enum machine_mode mode;
  203.      int size, insn_number;
  204. {
  205.   register int qty = next_qty++;
  206.   reg_qty[regno] = qty;
  207.   reg_offset[regno] = 0;
  208.   qty_size[qty] = size;
  209.   qty_mode[qty] = mode;
  210.   qty_birth[qty] = insn_number;
  211.   qty_n_calls_crossed[qty] = reg_n_calls_crossed[regno];
  212.   qty_min_class[qty] = reg_preferred_class (regno);
  213.   qty_preferred_or_nothing[qty] = reg_preferred_or_nothing (regno);
  214.   qty_n_refs[qty] = reg_n_refs[regno];
  215. }
  216.  
  217. /* Main entry point of this file.  */
  218.  
  219. void
  220. local_alloc ()
  221. {
  222.   register int b, i;
  223.  
  224.   /* Allocate vectors of temporary data.
  225.      See the declarations of these variables, above,
  226.      for what they mean.  */
  227.  
  228.   qty_phys_reg = (short *) alloca (max_regno * sizeof (short));
  229.   qty_phys_sugg = (short *) alloca (max_regno * sizeof (short));
  230.   qty_birth = (int *) alloca (max_regno * sizeof (int));
  231.   qty_death = (int *) alloca (max_regno * sizeof (int));
  232.   qty_size = (int *) alloca (max_regno * sizeof (int));
  233.   qty_mode = (enum machine_mode *) alloca (max_regno * sizeof (enum machine_mode));
  234.   qty_n_calls_crossed = (int *) alloca (max_regno * sizeof (int));
  235.   qty_min_class = (enum reg_class *) alloca (max_regno * sizeof (enum reg_class));
  236.   qty_preferred_or_nothing = (char *) alloca (max_regno);
  237.   qty_n_refs = (short *) alloca (max_regno * sizeof (short));
  238.  
  239.   reg_qty = (int *) alloca (max_regno * sizeof (int));
  240.   reg_offset = (int *) alloca (max_regno * sizeof (int));
  241.  
  242.   reg_renumber = (short *) oballoc (max_regno * sizeof (short));
  243.   for (i = 0; i < max_regno; i++)
  244.     reg_renumber[i] = -1;
  245.  
  246.   /* This controls only how many elts of the `qty_...' vectors
  247.      need to be zero for the first basic block.  */
  248.   next_qty = max_regno;
  249.  
  250.   /* Allocate each block's local registers, block by block.  */
  251.  
  252.   for (b = 0; b < n_basic_blocks; b++)
  253.     {
  254.       for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
  255.     {
  256.       reg_qty[i] = -1;
  257.     }
  258.       for (i = FIRST_PSEUDO_REGISTER; i < max_regno; i++)
  259.     {
  260.       qty_phys_sugg[i] = -1;
  261.       qty_birth[i] = -1;
  262.       qty_death[i] = -1;
  263.       /* Set reg_qty to -2 for pseudos in this block, -1 for others.  */
  264.       if (reg_basic_block[i] == b && reg_n_deaths[i] == 1)
  265.         reg_qty[i] = -2;
  266.       else
  267.         reg_qty[i] = -1;
  268.     }
  269.  
  270.       bzero (reg_offset, max_regno * sizeof (int));
  271.  
  272.       /* NEXT_QTY indicates which elements of the `qty_...'
  273.      vectors might need to be initialized.  Initialize those,
  274.      with explicit loop if there are few, else with bzero.  */
  275.  
  276.       if (next_qty < FIRST_PSEUDO_REGISTER + 6)
  277.     {
  278.       for (i = FIRST_PSEUDO_REGISTER; i < next_qty; i++)
  279.         {
  280.           qty_size[i] = 0;
  281.           qty_mode[i] = VOIDmode;
  282.           qty_min_class[i] = NO_REGS;
  283.           qty_preferred_or_nothing[i] = 0;
  284.           qty_n_calls_crossed[i] = 0;
  285.           qty_n_refs[i] = 0;
  286.         }
  287.     }
  288.       else
  289.     {
  290.       int clear_length = next_qty - FIRST_PSEUDO_REGISTER;
  291.  
  292. #define CLEAR(vector)  \
  293.    bzero ((vector) + FIRST_PSEUDO_REGISTER,    \
  294.       (sizeof (*(vector))) * clear_length)
  295.  
  296.       CLEAR (qty_size);
  297.       CLEAR (qty_mode);
  298.       CLEAR (qty_min_class);
  299.       CLEAR (qty_preferred_or_nothing);
  300.       CLEAR (qty_n_calls_crossed);
  301.       CLEAR (qty_n_refs);
  302.     }
  303.  
  304.       next_qty = FIRST_PSEUDO_REGISTER;
  305.  
  306.       block_alloc (b);
  307. #ifdef USE_C_ALLOCA
  308.       alloca (0);
  309. #endif
  310.     }
  311. }
  312.  
  313. /* Allocate hard regs to the pseudo regs used only within block number B.
  314.    Only the pseudos that die but once can be handled.  */
  315.  
  316. static void
  317. block_alloc (b)
  318.      int b;
  319. {
  320.   register int i, q;
  321.   register rtx insn;
  322.   int insn_number = 0;
  323.   int insn_count = 0;
  324.   short *qty_order;
  325.  
  326.   call_seen = 0;
  327.  
  328.   /* Count the instructions in the basic block.  */
  329.  
  330.   insn = basic_block_end[b];
  331.   while (1)
  332.     {
  333.       if (GET_CODE (insn) != NOTE)
  334.     insn_count++;
  335.       if (insn == basic_block_head[b])
  336.     break;
  337.       insn = PREV_INSN (insn);
  338.     }
  339.  
  340.   /* +1 to leave room for a post_mark_life at the last insn.  */
  341.   regs_live_at = (HARD_REG_SET *) alloca ((insn_count + 1)
  342.                       * sizeof (HARD_REG_SET));
  343.   bzero (regs_live_at, (insn_count + 1) * sizeof (HARD_REG_SET));
  344.  
  345.   /* Initialize table of hardware registers currently live.  */
  346.  
  347. #ifdef HARD_REG_SET
  348.   regs_live = *basic_block_live_at_start[b];
  349. #else
  350.   COPY_HARD_REG_SET (regs_live, basic_block_live_at_start[b]);
  351. #endif
  352.  
  353.   /* This loop scans the instructions of the basic block
  354.      and assigns quantities to registers.
  355.      It computes which registers to tie.  */
  356.  
  357.   insn = basic_block_head[b];
  358.   while (1)
  359.     {
  360.       register rtx body = PATTERN (insn);
  361.  
  362.       if (GET_CODE (insn) != NOTE)
  363.     insn_number++;
  364.  
  365.       if (GET_CODE (insn) == INSN || GET_CODE (insn) == JUMP_INSN
  366.       || GET_CODE (insn) == CALL_INSN)
  367.     {
  368.       register rtx link;
  369.       register int win = 0;
  370.       register rtx r0, r1;
  371.       int combined_regno = -1;
  372.       int insn_code_number = recog_memoized (insn);
  373.       int commutative = 0;
  374.  
  375.       this_insn_number = insn_number;
  376.       this_insn = insn;
  377.  
  378.       /* Set COMMUTATIVE if operands 1 and 2 are commutative.  */
  379.       if (insn_code_number >= 0
  380.           && insn_n_operands[insn_code_number] > 2
  381.           && insn_operand_constraint[insn_code_number][1][0] == '%')
  382.         commutative = 1;
  383.  
  384.       /* Is this insn suitable for tying two registers?
  385.          If so, try doing that.
  386.          Suitable insns are (set reg0 reg1) and
  387.          (set reg0 (arithop reg1 ...)).
  388.          For a commutative operation, try (set reg0 (arithop ... reg1)).
  389.          Subregs in place of regs are also ok.
  390.          An insn with parallel sets is ok if the first set is suitable.
  391.  
  392.          If tying is done, WIN is set nonzero.  */
  393.  
  394.       if (GET_CODE (body) == SET
  395.           && (r0 = SET_DEST (body),
  396.           GET_CODE (r0) == REG || GET_CODE (r0) == SUBREG)
  397.           && (r1 = SET_SRC (body),
  398.           GET_CODE (r1) == REG || GET_CODE (r1) == SUBREG))
  399.         win = combine_regs (r1, r0, b, insn_number, insn);
  400.       else if (GET_CODE (body) == SET)
  401.         {
  402.           r0 = SET_DEST (body);
  403.           if (GET_CODE (r0) == REG || GET_CODE (r0) == SUBREG)
  404.         {
  405.           if (GET_RTX_FORMAT (GET_CODE (SET_SRC (body)))[0] == 'e'
  406.               && (r1 = XEXP (SET_SRC (body), 0),
  407.               GET_CODE (r1) == REG || GET_CODE (r1) == SUBREG))
  408.             win = combine_regs (r1, r0, b, insn_number, insn);
  409.           if (win == 0 && commutative
  410.               && GET_RTX_FORMAT (GET_CODE (SET_SRC (body)))[1] == 'e'
  411.               && (r1 = XEXP (SET_SRC (body), 1),
  412.               GET_CODE (r1) == REG || GET_CODE (r1) == SUBREG))
  413.             win = combine_regs (r1, r0, b, insn_number, insn);
  414.         }
  415.         }
  416.       else if (GET_CODE (body) == PARALLEL)
  417.         {
  418.           rtx set1 = XVECEXP (body, 0, 0);
  419.           if (GET_CODE (set1) == SET 
  420.           && (r0 = SET_DEST (set1),
  421.               GET_CODE (r0) == REG || GET_CODE (r0) == SUBREG)
  422.           && GET_RTX_FORMAT (GET_CODE (SET_SRC (set1)))[0] == 'e'
  423.           && (r1 = XEXP (SET_SRC (set1), 0),
  424.               GET_CODE (r1) == REG || GET_CODE (r1) == SUBREG))
  425.         win = combine_regs (r1, r0, b, insn_number, insn);
  426.           if (win == 0 && commutative && GET_CODE (set1) == SET 
  427.           && (r0 = SET_DEST (set1),
  428.               GET_CODE (r0) == REG || GET_CODE (r0) == SUBREG)
  429.           && GET_RTX_FORMAT (GET_CODE (SET_SRC (set1)))[1] == 'e'
  430.           && (r1 = XEXP (SET_SRC (set1), 1),
  431.               GET_CODE (r1) == REG || GET_CODE (r1) == SUBREG))
  432.         win = combine_regs (r1, r0, b, insn_number, insn);
  433.         }
  434.  
  435.       /* If registers were just tied, set COMBINED_REGNO
  436.          to the number of the register used in this insn
  437.          that was tied to the register set in this insn.
  438.          This register's qty should not be "killed".  */
  439.  
  440.       if (win)
  441.         {
  442.           while (GET_CODE (r1) == SUBREG)
  443.         r1 = SUBREG_REG (r1);
  444.           combined_regno = REGNO (r1);
  445.         }
  446.  
  447.       for (link = REG_NOTES (insn); link; link = XEXP (link, 1))
  448.         {
  449.           /* Mark the death of everything that dies in this instruction,
  450.          except for anything that was just combined.  */
  451.           if (XEXP (link, 0)
  452.           && REG_NOTE_KIND (link) == REG_DEAD
  453.           && combined_regno != REGNO (XEXP (link, 0)))
  454.         {
  455. #if 0  /* The mechanism in reg_is_set that checks whether the qty dies here
  456.       ought to handle this case properly.  */
  457.           if (combined_regno >= 0 &&
  458.               reg_qty[combined_regno] == reg_qty[REGNO (XEXP (link, 0))])
  459.             /* Here for the death of the quotient in a divmod insn:
  460.                something that was born and dead in this insn
  461.                but combined with something else that also dies here.
  462.                Mark the qty as dying one instruction later.  */
  463.             wipe_dead_reg (XEXP (link, 0), insn_number,
  464.                    insn_number + 1);
  465.           else
  466. #endif
  467.             wipe_dead_reg (XEXP (link, 0), insn_number, insn_number);
  468.         }
  469.           /* Also, if this insn introduces a "constant" register,
  470.          that could just be replaced by the value it is given here
  471.          (which can legitimately be an immediate operand),
  472.          tell global-alloc not to allocate it
  473.          unless it is used at least twice more.  */
  474.  
  475.           else if (REG_NOTE_KIND (link) == REG_EQUIV
  476.                && GET_CODE (SET_DEST (body)) == REG
  477.                && general_operand (XEXP (link, 0), VOIDmode)
  478.                /* Don't inhibit allocation of a "constant" register
  479.               that we have already tied to something else!  */
  480.                && combined_regno < 0
  481.                /* Don't mess with things live during setjmp.  */
  482.                && reg_live_length[REGNO (SET_DEST (body))] >= 0)
  483.         {
  484.           i = REGNO (SET_DEST (body));
  485.           if (reg_n_sets[i] > 1)
  486.             {
  487.               /* Register is set in another place => not really constant.
  488.              cse or flow can cause this to happen.
  489.              Ok, forget we ever thought it was constant.  */
  490.               GET_MODE (link) = VOIDmode;
  491.             }
  492.           else if (reg_n_refs[i] <= 2)
  493.             {
  494.               /* For a parameter copy, do let global-alloc
  495.              allocate it; otherwise we would be forced to
  496.              have a frame pointer.  */
  497.               if (! frame_pointer_needed
  498.               && GET_CODE (SET_SRC (PATTERN (insn))) == MEM)
  499.             reg_live_length[i] = -2;
  500.               else
  501.             reg_live_length[i] = -1;
  502.  
  503.               /* If value is not constant, we have a parameter
  504.              or a static chain pointer.  Tell local-alloc
  505.              as well not to allocate it.  */
  506.               if (! CONSTANT_P (SET_SRC (PATTERN (insn))))
  507.             {
  508.               reg_basic_block[i] = REG_BLOCK_GLOBAL;
  509.               reg_qty[i] = -1;
  510.             }
  511.             }
  512.           else
  513.             /* In any case, lower its priority for global-alloc.  */
  514.             reg_live_length[i] *= 2;
  515.         }
  516.         }
  517.  
  518.       /* Allocate qty numbers for all registers local to this block
  519.          that are born (set) in this instruction.
  520.          A pseudo that already has a qty is not changed.  */
  521.  
  522.       note_stores (PATTERN (insn), reg_is_set);
  523.     }
  524.       if (GET_CODE (insn) == CALL_INSN)
  525.     call_seen = 1;
  526.       if (insn == basic_block_end[b])
  527.     break;
  528.       /* We don't need this for the block's first instruction
  529.      since no regs we care about are live before that instruction.
  530.      Also we do not allocate space in regs_live_at for that instruction. */
  531.       IOR_HARD_REG_SET (regs_live_at[insn_number], regs_live);
  532.       insn = NEXT_INSN (insn);
  533.     }
  534.  
  535.   /* Now every register that is local to this basic block
  536.      should have been given a quantity, or else -1 meaning ignore it.
  537.      Every quantity should have a known birth (verify this now).
  538.  
  539.      If a qty's death has not been established, it indicates a dead store.
  540.      That is ok if the insn is not entirely dead.
  541.      So set the qty'd death to just after its birth.  */
  542.  
  543.   for (i = FIRST_PSEUDO_REGISTER; i < next_qty; i++)
  544.     {
  545.       if (qty_birth[i] == -1)
  546.     abort ();
  547.       if (qty_death[i] == -1)
  548.     qty_death[i] = qty_birth[i] + 1;
  549.     }
  550.  
  551.   /* Now order the qtys so we assign them registers
  552.      in order of decreasing length of life.  */
  553.   qty_order = (short *) alloca (next_qty * sizeof (short));
  554.   for (i = FIRST_PSEUDO_REGISTER; i < next_qty; i++)
  555.     qty_order[i] = i;
  556.  
  557. #define EXCHANGE(I1, I2)  \
  558.   { i = qty_order[I1]; qty_order[I1] = qty_order[I2]; qty_order[I2] = i; }
  559.  
  560.   if (next_qty == 2 + FIRST_PSEUDO_REGISTER)
  561.     {
  562.       if (qty_compare (FIRST_PSEUDO_REGISTER, FIRST_PSEUDO_REGISTER + 1) > 0)
  563.     EXCHANGE (FIRST_PSEUDO_REGISTER, FIRST_PSEUDO_REGISTER + 1);
  564.     }
  565.   else if (next_qty == 3 + FIRST_PSEUDO_REGISTER)
  566.     {
  567.       if (qty_compare (FIRST_PSEUDO_REGISTER, FIRST_PSEUDO_REGISTER + 1) > 0)
  568.     EXCHANGE (FIRST_PSEUDO_REGISTER, FIRST_PSEUDO_REGISTER + 1);
  569.       if (qty_compare (FIRST_PSEUDO_REGISTER + 1, FIRST_PSEUDO_REGISTER + 2) > 0)
  570.     EXCHANGE (FIRST_PSEUDO_REGISTER + 2, FIRST_PSEUDO_REGISTER + 1);
  571.       if (qty_compare (FIRST_PSEUDO_REGISTER, FIRST_PSEUDO_REGISTER + 1) > 0)
  572.     EXCHANGE (FIRST_PSEUDO_REGISTER, FIRST_PSEUDO_REGISTER + 1);
  573.     }
  574.   else if (next_qty > 3 + FIRST_PSEUDO_REGISTER)
  575.     qsort (qty_order + FIRST_PSEUDO_REGISTER,
  576.        next_qty - FIRST_PSEUDO_REGISTER, sizeof (short), qty_compare_1);
  577.  
  578.   /* Now for each qty that is not a hardware register,
  579.      look for a hardware register to put it in.
  580.      First try the register class that is cheapest for this qty,
  581.      if there is more than one class.  */
  582.  
  583.   for (i = FIRST_PSEUDO_REGISTER; i < next_qty; i++)
  584.     {
  585.       q = qty_order[i];
  586.       if (qty_size[q] >= 0)
  587.     {
  588.       if (N_REG_CLASSES > 1)
  589.         {
  590.           qty_phys_reg[q] = find_free_reg (qty_min_class[q], 
  591.                            qty_mode[q], q, 0,
  592.                            qty_birth[q], qty_death[q]);
  593.           if (qty_phys_reg[q] >= 0)
  594.         continue;
  595.         }
  596.  
  597.       if (!qty_preferred_or_nothing[q])
  598.         qty_phys_reg[q] = find_free_reg (GENERAL_REGS, 
  599.                          qty_mode[q], q, 0,
  600.                          qty_birth[q], qty_death[q]);
  601.     }
  602.     }
  603.  
  604.   /* Now propagate the register assignments
  605.      to the pseudo regs belonging to the qtys.  */
  606.  
  607.   for (i = FIRST_PSEUDO_REGISTER; i < max_regno; i++)
  608.     if (reg_qty[i] >= 0 && qty_phys_reg[reg_qty[i]] >= 0)
  609.       {
  610.     reg_renumber[i] = qty_phys_reg[reg_qty[i]] + reg_offset[i];
  611.       }
  612. }
  613.  
  614. /* Compare two quantities' priority for getting real registers.
  615.    We give quantities with hard-reg suggestions priority over all others.
  616.    We give longer-lived quantities higher priority
  617.    so that the shorter-lived ones will tend to be in the same places
  618.    which gives in general the maximum room for the regs to
  619.    be allocated by global-alloc.
  620.    Regs with more references are also preferred.  */
  621.  
  622. static int
  623. qty_compare (q1, q2)
  624.      int q1, q2;
  625. {
  626.   register int tem = (qty_phys_sugg[q2] >= 0) - (qty_phys_sugg[q1] >= 0);
  627.   if (tem != 0) return tem;
  628.   return -((qty_n_refs[q1] + qty_death[q1] - qty_birth[q1]) * qty_size[q2]
  629.        - (qty_n_refs[q2] + qty_death[q2] - qty_birth[q2]) * qty_size[q1]);
  630. }
  631.  
  632. static int
  633. qty_compare_1 (q1, q2)
  634.      short *q1, *q2;
  635. {
  636.   register int tem = (qty_phys_sugg[*q2] >= 0) - (qty_phys_sugg[*q1] >= 0);
  637.   if (tem != 0) return tem;
  638.   tem = -((qty_n_refs[*q1] + qty_death[*q1] - qty_birth[*q1]) * qty_size[*q2]
  639.       - (qty_n_refs[*q2] + qty_death[*q2] - qty_birth[*q2]) * qty_size[*q1]);
  640.   if (tem != 0) return tem;
  641.   /* If qtys are equally good, sort by qty number,
  642.      so that the results of qsort leave nothing to chance.  */
  643.   return *q1 - *q2;
  644. }
  645.  
  646. /* Attempt to combine the two registers (rtx's) USEDREG and SETREG.
  647.    Returns 1 if have done so, or 0 if cannot.
  648.  
  649.    Combining registers means marking them as having the same quantity
  650.    and adjusting the offsets within the quantity if either of
  651.    them is a SUBREG).
  652.  
  653.    We don't actually combine a hard reg with a pseudo; instead
  654.    we just record the hard reg as the suggestion for the pseudo's quantity.
  655.    If we really combined them, we could lose if the pseudo lives
  656.    across an insn that clobbers the hard reg (eg, movstr).
  657.  
  658.    There are elaborate checks for the validity of combining.  */
  659.  
  660.    
  661. static int
  662. combine_regs (usedreg, setreg, b, insn_number, insn)
  663.      rtx usedreg, setreg;
  664.      int b;
  665.      int insn_number;
  666.      rtx insn;
  667. {
  668.   register int ureg, sreg;
  669.   register int offset = 0;
  670.   int usize, ssize;
  671.   register int sqty;
  672.  
  673.   /* Determine the numbers and sizes of registers being used.  */
  674.  
  675.   while (GET_CODE (usedreg) == SUBREG)
  676.     {
  677.       offset += SUBREG_WORD (usedreg);
  678.       usedreg = SUBREG_REG (usedreg);
  679.     }
  680.   if (GET_CODE (usedreg) != REG)
  681.     return 0;
  682.   ureg = REGNO (usedreg);
  683.   usize = REG_SIZE (usedreg);
  684.  
  685.   while (GET_CODE (setreg) == SUBREG)
  686.     {
  687.       offset -= SUBREG_WORD (setreg);
  688.       setreg = SUBREG_REG (setreg);
  689.     }
  690.   if (GET_CODE (setreg) != REG)
  691.     return 0;
  692.   sreg = REGNO (setreg);
  693.   ssize = REG_SIZE (setreg);
  694.  
  695.   /* Do not combine registers unless one fits within the other.  */
  696.   if (offset > 0 && usize + offset > ssize)
  697.     return 0;
  698.   if (offset < 0 && usize + offset < ssize)
  699.     return 0;
  700.   /* Do not combine with a smaller already-assigned object
  701.      if that smaller object is already combined with something bigger
  702.      or if that smaller object is a hard reg.
  703.      In the latter case, we would implicitly be using consecutive
  704.      hard regs, and there is no code to keep track of that.
  705.      (This is overcautious; we could check that ssize actually
  706.      requires more hard regs at this spot.)  */
  707.   if (ssize > usize && reg_qty[ureg] >= FIRST_PSEUDO_REGISTER
  708.       && usize < qty_size[reg_qty[ureg]])
  709.     return 0;
  710.  
  711.   /* Don't do anything with the non-allocatable registers.
  712.      Also, don't suggest a call-clobberable register
  713.      for something that must live across calls.
  714.      Also, don't suggest a hardware register for anything larger than it.  */
  715.   if (ureg < FIRST_PSEUDO_REGISTER)
  716.     {
  717.       if (fixed_regs[ureg])
  718.     return 0;
  719.       if (reg_n_calls_crossed[sreg] != 0 && call_used_regs[ureg])
  720.     return 0;
  721.       if (usize < ssize)
  722.     return 0;
  723.     }
  724.  
  725.   if (sreg < FIRST_PSEUDO_REGISTER)
  726.     {
  727.       if (fixed_regs[sreg])
  728.     return 0;
  729.       if (reg_n_calls_crossed[ureg] != 0 && call_used_regs[sreg])
  730.     return 0;
  731.       if (ssize < usize)
  732.     return 0;
  733.     }
  734.  
  735.   /* Don't tie something to itself.  In most cases it would make no
  736.      difference, but it would screw up if the reg being tied to itself
  737.      also dies in this insn.  */
  738.  
  739.   if (ureg == sreg)
  740.     return 0; 
  741.  
  742.   /* Don't try to connect two different hardware registers.  */
  743.  
  744.   if (ureg < FIRST_PSEUDO_REGISTER && sreg < FIRST_PSEUDO_REGISTER)
  745.     return 0;
  746.  
  747.   /* Don't connect two different machine modes if they have different
  748.      implications as to which registers may be used.  */
  749.  
  750.   if (!MODES_TIEABLE_P (GET_MODE (usedreg), GET_MODE (setreg)))
  751.     return 0;
  752.  
  753.   /* Now, if one of UREG and SREG is a hard reg and the other is
  754.      a pseudo, record the hard reg as the qty_phys_sugg for the pseudo
  755.      instead of tying them.  */
  756.   /* Return "failure" so that the lifespan of UREG is terminated here;
  757.      that way the two lifespans will be disjoint and nothing will prevent
  758.      the pseudo reg from being given this hard reg.  */
  759.  
  760.   if (ureg < FIRST_PSEUDO_REGISTER)
  761.     {
  762.       if (reg_qty[sreg] == -2)
  763.     reg_is_born (setreg, insn_number);
  764.       if (reg_qty[ureg] == -2)
  765.     reg_is_born (usedreg, insn_number);
  766.       if (reg_qty[sreg] >= 0)
  767.     qty_phys_sugg[reg_qty[sreg]] = ureg;
  768.       return 0;
  769.     }
  770.   if (sreg < FIRST_PSEUDO_REGISTER)
  771.     {
  772.       if (reg_qty[sreg] == -2)
  773.     reg_is_born (setreg, insn_number);
  774.       if (reg_qty[ureg] == -2)
  775.     reg_is_born (usedreg, insn_number);
  776.       /* If UREG already has a suggested hard reg, don't override it,
  777.      since the most likely case is on a risc machine
  778.      when a pseudo gets a subroutine result and is then returned by
  779.      this function.  In this case, the outgoing register window
  780.      is probably a better place to use.  */
  781.       if (reg_qty[ureg] >= 0
  782.       && (qty_phys_sugg[reg_qty[ureg]] < 0
  783.           /* If the old suggestion is no good, override it.  */
  784.           || (qty_n_calls_crossed[reg_qty[ureg]] != 0
  785.           && call_used_regs[qty_phys_sugg[reg_qty[ureg]]])))
  786.     qty_phys_sugg[reg_qty[ureg]] = sreg;
  787.       return 0;
  788.     }
  789.  
  790.   /* Do nothing if SREG is a pseudo that already has a quantity
  791.      or if it isn't local to this basic block or dies more than once.  */
  792.  
  793.   if (reg_qty[sreg] != -2)
  794.     return 0;
  795.  
  796.   /* Do nothing if UREG isn't local to this block or dies more than once.
  797.      We do this because global_alloc has no idea of tying,
  798.      so there is no use noting those local pseudos that could
  799.      profitably be delayed till global_alloc and get tied to global ones.  */
  800.  
  801.   if (reg_qty[ureg] == -1)
  802.     return 0;
  803.  
  804.   /* We don't already know about SREG, so tie it to UREG
  805.      if this is the last use of UREG, provided the classes they want
  806.      are compatible.  */
  807.  
  808.   if (find_regno_note (insn, REG_DEAD, ureg)
  809.       && (reg_qty[ureg] >= FIRST_PSEUDO_REGISTER
  810.       ? reg_meets_class_p (sreg, qty_min_class[reg_qty[ureg]])
  811.       : reg_meets_class_p (sreg, reg_preferred_class (ureg))))
  812.     {
  813.       if (reg_qty[ureg] == -2)
  814.     reg_is_born (usedreg, insn_number);
  815.       sqty = reg_qty[sreg] = reg_qty[ureg];
  816.       if (sqty < FIRST_PSEUDO_REGISTER) abort ();
  817.       /* If SREG's reg class is smaller, set qty_min_class[SQTY].  */
  818.       update_qty_class (sqty, sreg);
  819.       reg_offset[sreg] = reg_offset[ureg] + offset;
  820.       if (sqty >= 0)
  821.     {
  822.       qty_n_calls_crossed[sqty] += reg_n_calls_crossed[sreg];
  823.       qty_n_refs[sqty] += reg_n_refs[sreg];
  824.       if (! reg_preferred_or_nothing (sreg))
  825.         qty_preferred_or_nothing[sqty] = 0;
  826.       if (usize < ssize)
  827.         {
  828.           register int i;
  829.           for (i = FIRST_PSEUDO_REGISTER; i < max_regno; i++)
  830.         if (reg_qty[i] == sqty)
  831.           reg_offset[i] -= offset;
  832.           qty_size[sqty] = ssize;
  833.           qty_mode[sqty] = GET_MODE (setreg);
  834.         }
  835.     }
  836.     }
  837.   else
  838.     return 0;
  839.  
  840.   return 1;
  841. }
  842.  
  843. /* Return 1 if the preferred class of REG allows it to be tied
  844.    to a quantity or register whose class is CLASS.
  845.    True if REG's reg class either contains or is contained in CLASS.  */
  846.  
  847. static int
  848. reg_meets_class_p (reg, class)
  849.      int reg;
  850.      enum reg_class class;
  851. {
  852.   register enum reg_class rclass = reg_preferred_class (reg);
  853.   return (reg_class_subset_p (rclass, class)
  854.       || reg_class_subset_p (class, rclass));
  855. }
  856.  
  857. /* Return nonzero if R2's preferred class is the same as or contains
  858.    R1's preferred class.  R1 and R2 are pseudo-register numbers.  */
  859.  
  860. static int
  861. reg_class_subset_p (c1, c2)
  862.      register enum reg_class c1;
  863.      register enum reg_class c2;
  864. {
  865.   if (c1 == c2) return 1;
  866.  
  867.   if (c2 == ALL_REGS)
  868.   win:
  869.     return 1;
  870.   GO_IF_HARD_REG_SUBSET (reg_class_contents[(int)c1],
  871.              reg_class_contents[(int)c2],
  872.              win);
  873.   return 0;
  874. }
  875.  
  876. /* Update the class of QTY assuming that REG is being tied to it.  */
  877.  
  878. static void
  879. update_qty_class (qty, reg)
  880.      int qty;
  881.      int reg;
  882. {
  883.   enum reg_class rclass = reg_preferred_class (reg);
  884.   if (reg_class_subset_p (rclass, qty_min_class[qty]))
  885.     qty_min_class[qty] = rclass;
  886. }
  887.  
  888. /* Handle something which alters the value of an rtx REG.
  889.    REG is whatever is set or clobbered.  (CLOBBER_FLAG says which.)
  890.    If it is not really a register, we do nothing.
  891.    The file-global variables `this_insn' and `this_insn_number'
  892.    carry info from `block_alloc'.  */
  893.  
  894. static void
  895. reg_is_set (reg, setter)
  896.      rtx reg;
  897.      rtx setter;
  898. {
  899.   register int regno;
  900.   int clobber_flag = GET_CODE (setter) == CLOBBER;
  901.  
  902.   if (reg == 0 || GET_CODE (reg) != REG)
  903.     return;
  904.  
  905.   regno = REGNO (reg);
  906.  
  907.   if (regno < FIRST_PSEUDO_REGISTER)
  908.     {
  909.       /* A hard reg is set or clobbered.
  910.      Mark it as live at the moment immediately following this insn
  911.      so that no pseudo can live here at that time.
  912.      For a CLOBBER, mark it as live before this insn,
  913.      to make sure it is free during the entire insn.  */
  914.  
  915.       register int lim = regno + HARD_REGNO_NREGS (regno, GET_MODE (reg));
  916.       register int i;
  917.       for (i = regno; i < lim; i++)
  918.     {
  919.       SET_HARD_REG_BIT (regs_live_at[this_insn_number], i);
  920.       if (clobber_flag)
  921.         SET_HARD_REG_BIT (regs_live_at[this_insn_number - 1], i);
  922.     }
  923.  
  924.       /* If the hard reg is given a useful value
  925.      and it does not die in this insn,
  926.      mark it as live indefinitely afterward.  */
  927.       if (! clobber_flag
  928.       && ! find_regno_note (this_insn, REG_DEAD, regno))
  929.     reg_is_born (reg, this_insn_number);
  930.     }
  931.   else if (! clobber_flag)
  932.     {
  933.       /* A pseudo-reg is set (not just clobbered).  */
  934.  
  935.       reg_is_born (reg, this_insn_number);
  936.  
  937.       /* If a pseudo register dies in the same insn that sets it,
  938.      say it dies in the following insn instead,
  939.      because it will have to be live right after this insn.  */
  940.       if (qty_death[reg_qty[regno]] == this_insn_number)
  941.     {
  942.       /* Calls to post_mark_life and mark_life deleted here.
  943.          They only know how to handle hard regs.  */
  944.       qty_death[reg_qty[regno]]++;
  945.     }
  946.     }
  947.   else if (reg_qty[regno] >= 0 && qty_death[reg_qty[regno]] == this_insn_number
  948.        && qty_birth[reg_qty[regno]] == this_insn_number)
  949.     {
  950.       /* A psuedo-reg is clobbered by this insn and was born and dies here.
  951.      This is a temporary required for this insn and so will
  952.      conflict with any other live registers at this point.  We must
  953.      assume that this register is used before all the inputs of the
  954.      insn are dead.  So this register must not conflict with any of them.
  955.      Mark it as born at the previous insn.  */
  956.       qty_birth[reg_qty[regno]]--;
  957.       /* It should also conflict with this insn's outputs.  */
  958.       qty_death[reg_qty[regno]]++;
  959.     }
  960. }
  961.  
  962. /* Handle beginning of the life of register REG.
  963.    INSN_NUMBER is the insn at which this is happening.  */
  964.  
  965. static void
  966. reg_is_born (reg, insn_number)
  967.      rtx reg;
  968.      int insn_number;
  969. {
  970.   register int regno = REGNO (reg);
  971.      
  972.   if (regno < FIRST_PSEUDO_REGISTER)
  973.     mark_life (regno, GET_MODE (reg), 1);
  974.   else if (reg_qty[regno] == -2)
  975.     alloc_qty (regno, GET_MODE (reg), PSEUDO_REGNO_SIZE (regno), insn_number);
  976. }
  977.  
  978. /* Record the death in insn DEATH_INSN_NUMBER for the register REG.  */
  979.  
  980. static void
  981. wipe_dead_reg (reg, this_insn_number, death_insn_number)
  982.      register rtx reg;
  983.      int this_insn_number;
  984.      int death_insn_number;
  985. {
  986.   register int regno = REGNO (reg);
  987.  
  988.   if (regno < FIRST_PSEUDO_REGISTER)
  989.     {
  990.       mark_life (regno, GET_MODE (reg), 0);
  991.       if (this_insn_number != death_insn_number)
  992.     abort ();
  993. #if 0                /* Should never get here */
  994.     post_mark_life (regno, GET_MODE (reg), 1,
  995.             this_insn_number, death_insn_number);
  996. #endif
  997.     }
  998.   else
  999.     {
  1000.       /* If a pseudo reg is referred to but was never set,
  1001.      we will find here that its qty is -2.
  1002.      Since these regs do not conflict with anything,
  1003.      mark them as born and dead in the same place.  */
  1004.       if (reg_qty[regno] == -2)
  1005.     {
  1006.       alloc_qty (regno, GET_MODE (reg), REG_SIZE (reg), this_insn_number);
  1007.       REG_NOTES (this_insn) = gen_rtx (EXPR_LIST, REG_UNSET, reg,
  1008.                        REG_NOTES (this_insn));
  1009.     }
  1010.  
  1011.       if (reg_qty[regno] >= 0)
  1012.     qty_death[reg_qty[regno]] = death_insn_number;
  1013.     }
  1014. }
  1015.  
  1016. /* Find a block of SIZE words of hard regs in reg_class CLASS
  1017.    that can hold something of machine-mode MODE
  1018.      (but actually we test only the first of the block for holding MODE)
  1019.    and still free between insn BORN_INSN and insn DEAD_INSN,
  1020.    and return the number of the first of them.
  1021.    Return -1 if such a block cannot be found. 
  1022.    If QTY crosses calls, insist on a register preserved by calls,
  1023.    unless ACCEPT_CALL_CLOBBERED is nonzero.  */
  1024.  
  1025. static int
  1026. find_free_reg (class, mode, qty, accept_call_clobbered, born_insn, dead_insn)
  1027.      enum reg_class class;
  1028.      enum machine_mode mode;
  1029.      int accept_call_clobbered;
  1030.      int qty;
  1031.      int born_insn, dead_insn;
  1032. {
  1033.   register int i, ins;
  1034. #ifdef HARD_REG_SET
  1035.   register        /* Declare it register if it's a scalar.  */
  1036. #endif
  1037.     HARD_REG_SET used;
  1038.  
  1039.   if (accept_call_clobbered)
  1040.     COPY_HARD_REG_SET (used, call_fixed_reg_set);
  1041.   else if (qty_n_calls_crossed[qty] == 0)
  1042.     COPY_HARD_REG_SET (used, fixed_reg_set);
  1043.   else
  1044.     COPY_HARD_REG_SET (used, call_used_reg_set);
  1045.  
  1046.   for (ins = born_insn; ins < dead_insn; ins++)
  1047.     IOR_HARD_REG_SET (used, regs_live_at[ins]);
  1048.  
  1049.   IOR_COMPL_HARD_REG_SET (used, reg_class_contents[(int) class]);
  1050.   /* Don't use the frame pointer reg in local-alloc even if
  1051.      we may omit the frame pointer, because if we do that and then we
  1052.      need a frame pointer, reload won't know how to move the pseudo
  1053.      to another hard reg.  It can move only regs made by global-alloc.  */
  1054.   SET_HARD_REG_BIT (used, FRAME_POINTER_REGNUM);
  1055.  
  1056.   /* If quantity QTY has a suggested physical register,
  1057.      try that one first.  */
  1058.  
  1059.   if (qty_phys_sugg[qty] >= 0)
  1060.     {
  1061.       i = qty_phys_sugg[qty];
  1062.       if (! TEST_HARD_REG_BIT (used, i)
  1063.       && HARD_REGNO_MODE_OK (i, mode))
  1064.     {
  1065.       register int j;
  1066.       register int size1 = HARD_REGNO_NREGS (i, mode);
  1067.       for (j = 1; j < size1 && ! TEST_HARD_REG_BIT (used, i + j); j++);
  1068.       if (j == size1)
  1069.         {
  1070.           post_mark_life (i, mode, 1, born_insn, dead_insn);
  1071.           return i;
  1072.         }
  1073.     }
  1074.     }
  1075.  
  1076.   /* If that doesn't find one, test each hard reg.  */
  1077.  
  1078.   for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
  1079.     {
  1080. #ifdef REG_ALLOC_ORDER
  1081.       int regno = reg_alloc_order[i];
  1082. #else
  1083.       int regno = i;
  1084. #endif
  1085.       if (! TEST_HARD_REG_BIT (used, regno)
  1086.       && HARD_REGNO_MODE_OK (regno, mode))
  1087.     {
  1088.       register int j;
  1089.       register int size1 = HARD_REGNO_NREGS (regno, mode);
  1090.       for (j = 1; j < size1 && ! TEST_HARD_REG_BIT (used, regno + j); j++);
  1091.       if (j == size1)
  1092.         {
  1093.           post_mark_life (regno, mode, 1, born_insn, dead_insn);
  1094.           return regno;
  1095.         }
  1096. #ifndef REG_ALLOC_ORDER
  1097.       i += j;        /* Skip starting points we know will lose */
  1098. #endif
  1099.     }
  1100.     }
  1101.  
  1102.   /* If it would be profitable to allocate a call-clobbered register
  1103.      and save and restore it around calls, do that.  */
  1104.  
  1105.   if (! accept_call_clobbered
  1106.       && flag_caller_saves
  1107.       && qty_n_calls_crossed[qty] != 0
  1108.       && CALLER_SAVE_PROFITABLE (qty_n_refs[qty], qty_n_calls_crossed[qty]))
  1109.     {
  1110.       i = find_free_reg (class, mode, qty, 1, born_insn, dead_insn);
  1111.       if (i >= 0)
  1112.     caller_save_needed = 1;
  1113.       return i;
  1114.     }
  1115.   return -1;
  1116. }
  1117.  
  1118. static void
  1119. mark_life (regno, mode, life)
  1120.      register int regno;
  1121.      enum machine_mode mode;
  1122.      int life;
  1123. {
  1124.   register int j = HARD_REGNO_NREGS (regno, mode);
  1125.   if (life)
  1126.     while (--j >= 0)
  1127.       SET_HARD_REG_BIT (regs_live, regno + j);
  1128.   else
  1129.     while (--j >= 0)
  1130.       CLEAR_HARD_REG_BIT (regs_live, regno + j);
  1131. }
  1132.  
  1133. static void
  1134. post_mark_life (regno, mode, life, birth, death)
  1135.      register int regno, life, birth;
  1136.      enum machine_mode mode;
  1137.      int death;
  1138. {
  1139.   register int j = HARD_REGNO_NREGS (regno, mode);
  1140. #ifdef HARD_REG_SET
  1141.   register        /* Declare it register if it's a scalar.  */
  1142. #endif
  1143.     HARD_REG_SET this_reg;
  1144.  
  1145.   CLEAR_HARD_REG_SET (this_reg);
  1146.   while (--j >= 0)
  1147.     SET_HARD_REG_BIT (this_reg, regno + j);
  1148.  
  1149.   /* If a reg is born and dies in one insn,
  1150.      consider it live after that insn.  */
  1151.  
  1152.   if (birth == death)
  1153.     death++;
  1154.  
  1155.   if (life)
  1156.     while (birth < death)
  1157.       {
  1158.     IOR_HARD_REG_SET (regs_live_at[birth], this_reg);
  1159.     birth++;
  1160.       }
  1161.   else
  1162.     while (birth < death)
  1163.       {
  1164.     AND_COMPL_HARD_REG_SET (regs_live_at[birth], this_reg);
  1165.     birth++;
  1166.       }
  1167. }
  1168.  
  1169. void
  1170. dump_local_alloc (file)
  1171.      FILE *file;
  1172. {
  1173.   register int i;
  1174.   for (i = FIRST_PSEUDO_REGISTER; i < max_regno; i++)
  1175.     if (reg_renumber[i] != -1)
  1176.       fprintf (file, ";; Register %d in %d.\n", i, reg_renumber[i]);
  1177. }
  1178.